home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ghostscript.postinst < prev    next >
Text File  |  2009-10-12  |  1KB  |  55 lines

  1. #! /bin/sh
  2. # postinst script for ghostscript
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. # summary of how this script can be called:
  9. #        * <postinst> `configure' <most-recently-configured-version>
  10. #        * <old-postinst> `abort-upgrade' <new version>
  11. #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  12. #          <new-version>
  13. #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  14. #          <failed-install-package> <version> `removing'
  15. #          <conflicting-package> <version>
  16. # for details, see http://www.debian.org/doc/debian-policy/ or
  17. # the debian-policy package
  18. #
  19.  
  20. case "$1" in
  21.     configure)
  22.     # /usr/bin/ps2pdf is now controlled by update-alternatives
  23.     update-alternatives --install /usr/bin/ps2pdf \
  24.       ps2pdf /usr/bin/ps2pdf14 50
  25.     update-alternatives --install /usr/bin/ps2pdf \
  26.       ps2pdf /usr/bin/ps2pdf12 30
  27.     update-alternatives --install /usr/bin/ps2pdf \
  28.       ps2pdf /usr/bin/ps2pdf13 40
  29.  
  30.     # Make sure the substitution file for Ghostscript exists
  31.     if ! defoma-subst check-rule ghostscript; then
  32.       defoma-subst new-rule ghostscript
  33.     fi
  34.  
  35.     defoma-app -t update gs
  36.  
  37.     ;;
  38.  
  39.     abort-upgrade|abort-remove|abort-deconfigure)
  40.  
  41.     ;;
  42.  
  43.     *)
  44.         echo "postinst called with unknown argument \`$1'" >&2
  45.         exit 1
  46.     ;;
  47. esac
  48.  
  49. # dh_installdeb will replace this with shell code automatically
  50. # generated by other debhelper scripts.
  51.  
  52.  
  53.  
  54. exit 0
  55.